-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "style-to-dom",
"version": "1.2.4",
"description": "Fast create dom file by less or scss or css file.",
"author": "laoer536 <1547698569@qq.com>",
"repository": "git@github.com:laoer536/style-to-dom.git",
"scripts": {
"test": "jiti src/index.ts ./test/less/react/index.module.less",
"test:html": "jiti src/index.ts ./test/less/react/test.css",
"test:build": "node dist/index.mjs ./test/less/react/test.css",
"build": "unbuild && jiti scripts/add-node-env.ts",
"dev:web": "cd web && pnpm dev",
"release": "pnpm build && changelogen --release && npm publish && git push --follow-tags"
},
"bin": {
"create-style-dom": "./dist/index.mjs"
},
"keywords": [
"style-to-dom",
"style2dom",
"create-style-dom",
"fast-style-dom",
"create-styled-dom"
],
"license": "ISC",
"files": [
"dist"
],
"dependencies": {
"css-tree": "^2.3.1",
"less": "^4.1.3",
"local-pkg": "^0.4.3",
"minimist": "^1.2.8",
"pathe": "^1.1.1",
"sass": "^1.63.6",
"prettier": "^2.8.8"
},
"devDependencies": {
"@types/css-tree": "^2.3.1",
"@types/less": "^3.0.3",
"@types/minimist": "^1.2.2",
"@types/node": "^20.3.3",
"@types/prettier": "^2.7.3",
"changelogen": "^0.5.4",
"eslint": "^8.44.0",
"eslint-config-code-style-lint-ts": "^3.0.6",
"jiti": "^1.18.2",
"kolorist": "^1.8.0",
"typescript": "^5.1.6",
"unbuild": "^1.2.1"
}
}