-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "style-plus",
"type": "module",
"version": "0.2.2",
"packageManager": "[email protected]",
"description": "Enhanced style attribute, supporting CSS nesting syntax | 增强style属性,支持CSS嵌套语法",
"author": "tofu-xx <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/tofu-xx",
"homepage": "https://github.com/tofu-xx/style-plus#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tofu-xx/style-plus.git"
},
"bugs": "https://github.com/tofu-xx/style-plus/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js"
}
},
"main": "./dist/index.iife.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"release": "bumpp -no-push && pnpm publish",
"up": "taze major -I",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@swc/core": "^1.9.3",
"bumpp": "^9.8.1",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"taze": "^0.18.0",
"tsup": "^8.3.5"
}
}