-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "@casual-ui/styles",
"version": "0.1.1",
"type": "module",
"main": "src/index.js",
"files": [
"dist"
],
"exports": {
".": "./src/index.js",
"./src/index.scss": "./src/index.scss"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"release": "pnpm build && changeset publish",
"prepare": "pnpm build"
},
"author": {
"email": "[email protected]",
"name": "Dongsheng Zhao"
},
"repository": {
"url": "https://github.com/Casual-UI/styles.git"
},
"publishConfig": {
"exports": {
"./dist/style.css": "./dist/style.css"
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"rollup": "^3.26.3",
"rollup-plugin-scss": "4.0.0",
"sass": "^1.64.1",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0"
},
"overrides": {
"stylelint-config-prettier": {
"stylelint@": "^15.10.2"
}
}
}