-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "extract-style-variable",
"version": "1.0.1",
"description": "Extract variables from the style file, support css, less, scss",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"watch": "tsup src/index.ts --watch",
"dev": "vitest",
"test": "vitest run",
"lint": "eslint",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leeonon/extract-style-variable.git"
},
"keywords": [
"style",
"css",
"variable"
],
"author": "leeOnOn",
"license": "MIT",
"bugs": {
"url": "https://github.com/leeonon/extract-style-variable/issues"
},
"homepage": "https://github.com/leeonon/extract-style-variable#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"globals": "^13.20.0",
"prettier": "^2.8.4",
"tsup": "^6.6.3",
"vitest": "^0.28.5"
},
"dependencies": {
"@types/node": "^18.14.0",
"eslint": "^8.34.0",
"postcss-css-variables": "^0.18.0",
"postcss": "^8.4.21",
"typescript": "^4.9.5"
}
}