-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@chore-dev/sass2ts",
"version": "1.0.16",
"description": "Bridge Sass & JS! Easily exporting Sass variables and parser them to typed typescript variables for better DX.",
"keywords": [
"CSS",
"JavaScript",
"Sass",
"SCSS",
"TypeScript"
],
"type": "module",
"bin": "./bin/sass2ts.js",
"main": "./index.scss",
"types": "./parser/index.d.ts",
"files": [
"./bin",
"./parser",
"./stringifier",
"./index.scss"
],
"scripts": {
"build": "yarn build:clean && rollup --config rollup.config.js",
"build:watch": "nodemon --watch ./src --ext ts --exec yarn build",
"build:clean": "rm -rf ./bin/index.js ./parser",
"prepare": "husky",
"release": "release-it --config .release-it.json",
"// ESLint": "---------- ---------- ---------- ---------- ----------",
"eslint": "yarn prettier:fix; yarn eslint:no-glob .",
"eslint:no-glob": "eslint --cache --color --config eslint.config.js",
"eslint:fix": "yarn eslint --fix --quiet",
"eslint:fix:no-glob": "yarn eslint:no-glob --fix --quiet",
"// Prettier": "---------- ---------- ---------- ---------- ----------",
"prettier": "yarn prettier:base -c",
"prettier:base": "yarn prettier:base:no-glob './**/*.{?(s)css,html,js,ts,json}'",
"prettier:base:no-glob": "prettier --cache --config .prettier.config.js --ignore-path .prettierignore --ignore-unknown",
"prettier:fix": "yarn prettier:base -w",
"prettier:fix:no-glob": "yarn prettier:base:no-glob -w"
},
"dependencies": {
"chalk": "^5.3.0",
"change-case": "^5.4.4",
"command-line-args": "^5.2.1",
"json-to-ts": "^2.1.0",
"sass": "^1.77.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "8",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/command-line-args": "^5.2.3",
"@types/eslint__js": "8",
"@types/lint-staged": "^13.3.0",
"eslint": "8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"nodemon": "^3.1.3",
"prettier": "^3.3.0",
"release-it": "^17.3.0",
"rollup": "^4.18.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
},
"author": "Chore Team",
"contributors": [
{
"name": "Issac Li",
"email": "issac.li.523@gmail.com"
}
],
"homepage": "https://github.com/chore-dev/sass2ts",
"repository": {
"type": "git",
"url": "https://github.com/chore-dev/sass2ts"
},
"bugs": {
"url": "https://github.com/chore-dev/sass2ts/issues"
},
"engines": {
"node": ">=18.0.0"
},
"license": "Apache-2.0"
}