-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "@deot/style",
"version": "1.1.4",
"description": "Public CSS to HTML5",
"main": "./dist/index.css",
"type": "module",
"files": [
"src/**",
"dist/**",
"examples/**"
],
"packageManager": "pnpm@latest",
"scripts": {
"prepare": "husky",
"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": "npm run lint:es && npm run lint:style",
"lint:fix": "npm run lint:es -- --fix && npm run lint:style -- --fix",
"lint:es": "eslint . --color",
"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.9.9",
"normalize.css": "^8.0.1"
}
}