-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
76
{
"name": "vite-plugin-solid-undestructure",
"version": "0.2.4",
"description": "Automatically transforms props destructuring in SolidJS components",
"type": "module",
"main": "./dist/vite/index.js",
"module": "./dist/vite/index.js",
"types": "./dist/vite/index.d.ts",
"exports": {
".": {
"import": "./dist/vite/index.js",
"types": "./dist/vite/index.d.ts"
},
"./eslint": {
"import": "./dist/eslint/index.js",
"types": "./dist/eslint/index.d.ts"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/microdev1/solid-undestructure.git"
},
"keywords": [
"vite",
"solidjs",
"babel",
"plugin"
],
"license": "MIT",
"scripts": {
"build": "bun build:type && bun build:vite && bun build:eslint",
"build:type": "tsc --declaration --emitDeclarationOnly --outDir dist",
"build:vite": "bun build src/vite/index.ts --minify --packages=external --outfile=dist/vite/index.js",
"build:eslint": "bun build src/eslint/index.ts --minify --packages=external --outfile=dist/eslint/index.js",
"type": "tsc --noEmit",
"lint": "eslint --cache src",
"format": "prettier --write *",
"test": "bun test tests",
"check:format": "prettier --check *",
"pre": "bun type && bun lint && bun format"
},
"dependencies": {
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/bun": "^1.3.10",
"config": "link:config",
"eslint": "^9.39.3",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"peerDependencies": {
"eslint": "^9.0.0",
"eslint-plugin-solid": "^0.14.5",
"vite": "^7.3.1"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"eslint-plugin-solid": {
"optional": true
}
}
}