-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 KB
/
package.json
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
{
"name": "cascaderjs",
"version": "3.0.1",
"description": "cascader for javascript",
"keywords": [
"javascript",
"utils"
],
"homepage": "https://github.com/phaoer/Cascader",
"bugs": "https://github.com/phaoer/Cascader/issues",
"repository": {
"type": "git",
"url": "https://github.com/phaoer/Cascader"
},
"license": "MIT",
"author": "phaoer",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./styles/index.css": "./styles/index.css"
},
"browser": "dist/index.js",
"files": [
"images",
"dist/index.js",
"styles/index.css",
"index.d.ts",
"index.js",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"watch": "npm-run-all --parallel watch:ts watch:css",
"build": "npm-run-all --parallel build:ts build:css",
"build:ts": "rollup -c",
"build:css": "sass src/index.scss styles/index.css && postcss styles/index.css -o styles/index.css",
"watch:css": "chokidar \"src/**/*.scss\" -c \"npm run build:css\"",
"watch:ts": "rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"chokidar-cli": "^3.0.0",
"cssnano": "^7.0.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^10.1.2",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"rollup": "^4.18.0",
"sass": "^1.83.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
}
}