-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.64 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.64 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
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
{
"name": "@vue-styled-components/plugin",
"type": "module",
"version": "1.0.1",
"author": {
"name": "akinoccc",
"email": "akinochen@foxmail.com"
},
"license": "Apache-2.0",
"repository": {
"url": "git+https://github.com/vue-styled-components/plugin.git"
},
"keywords": [
"vue3",
"styled-components",
"styled-system",
"css",
"css-in-js",
"typescript",
"vite-plugin"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "semantic-release"
},
"peerDependencies": {
"vite": ">=5.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@babel/core": "^7.26.10",
"@babel/generator": "^7.26.10",
"@babel/parser": "^7.26.10",
"@babel/plugin-transform-typescript": "^7.26.8",
"@babel/traverse": "^7.26.10",
"@babel/types": "^7.26.10",
"magic-string": "^0.30.17"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@vitest/ui": "^3.0.8",
"eslint": "^9.22.0",
"semantic-release": "^24.2.3",
"tsup": "^8.4.0",
"typescript": "^5.7.2",
"vitest": "^3.0.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}