-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "@deot/style",
"version": "1.0.8",
"description": "Public CSS to HTML5",
"main": "./dist/index.css",
"type": "module",
"files": [
"src/**",
"dist/**",
"examples/**"
],
"packageManager": "pnpm@latest",
"scripts": {
"prepare": "husky install",
"init": "npx pnpm install",
"init:force": "rm -rf ./node_modules pnpm-lock.yaml && npm run init",
"dev": "npm run test -- --watch",
"build": "ddc build",
"release": "ddc release",
"update": "ddc update",
"test": "ddc test",
"lint": "eslint . --color",
"lint:fix": "npm run lint -- --fix",
"lint:style": "stylelint --fix 'src/**/*.{css,scss}' --cache --cache-location node_modules/.cache/stylelint/",
"typecheck": "tsc --noEmit --skipLibCheck"
},
"scripts-info": {
"init": "首次安装",
"dev": "开发模式",
"build": "打包模式",
"test": "执行测试",
"update": "更新 devDependencies 和 dependencies"
},
"author": "deot",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deot/sass"
},
"bugs": {
"url": "https://github.com/deot/sass/issues"
},
"devDependencies": {
"@deot/dev": "^2.8.8",
"normalize.css": "^8.0.1"
}
}