-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.29 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "smoothly",
"version": "1.115.0",
"description": "Web component library written in Stencil.",
"author": "Utily",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/utily/smoothly.git"
},
"bugs": {
"url": "https://github.com/utily/smoothly/issues"
},
"homepage": "https://github.com/utily/smoothly/tree/master-1.0",
"private": false,
"main": "dist/index.cjs.js",
"type": "module",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"exports": {
".": {
"import": {
"default": "./dist/smoothly/index.esm.js",
"types": "./dist/types/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.cjs.js",
"types": "./dist/types/index.d.ts"
}
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"files": [
"dist/",
"loader/"
],
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"scripts": {
"build": "stencil build",
"check-dts": "git diff --exit-code src/components.d.ts || (echo '❌ components.d.ts is outdated! Run \"npm run build\" and commit the changes.' && exit 1)",
"start": "stencil build --dev --watch --serve",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"test": "vitest --run --allowOnly --environment jsdom",
"coverage": "vitest --coverage",
"clean": "rm -rf .stencil/ dist/ node_modules/ loader/ www/"
},
"dependencies": {
"cloudly-http": "^0.1.7",
"isly": "^0.1.20",
"isoly": "^3.0.2",
"langly": "2.0.10",
"normalize.css": "^8.0.1",
"tidily": "^0.2.5",
"urlpattern-polyfill": "^8.0.2"
},
"devDependencies": {
"@stencil/core": "^4.18.3",
"@stencil/sass": "^3.0.12",
"@types/node": "^22.10.2",
"@types/pvutils": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-istanbul": "^3.2.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"jsdom": "^25.0.1",
"prettier": "3.8.1",
"typescript": "5.7.2",
"vitest": "^3.2.4",
"web-file-polyfill": "^1.0.4"
}
}