-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.28 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.28 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
{
"name": "vite-plugin-conditional-compile",
"version": "1.4.5",
"license": "MIT",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/LZS911/vite-plugin-conditional-compile"
},
"keywords": [
"vite",
"javascript",
"ifdebug",
"conditional",
"compile",
"vite-plugin",
"#ifdef",
"#elif",
"#else",
"#endif"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"prepublishOnly": "yarn test && yarn build",
"test": "jest",
"test:w": "jest --watch",
"test:c": "jest --coverage"
},
"devDependencies": {
"@types/babel__core": "^7.1.16",
"@types/jest": "^29.4.0",
"@types/node": "^16.11.7",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"unbuild": "^2.0.0",
"vite": "^4.5.0"
},
"dependencies": {
"@babel/core": "7.24.3",
"string-replace-async": "^2.0.0"
},
"peerDependencies": {
"vite": "^4.5.0"
}
}