forked from uni-helper/vite-plugin-uni-manifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
{
"name": "@uni-helper/vite-plugin-uni-manifest",
"type": "module",
"version": "0.2.2",
"packageManager": "[email protected]",
"description": "Use TypeScript to write manifest.json of uni-app",
"author": "KeJun",
"license": "MIT",
"homepage": "https://github.com/uni-helper/vite-plugin-uni-manifest#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/vite-plugin-uni-manifest.git"
},
"bugs": "https://github.com/uni-helper/vite-plugin-uni-manifest/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"play": "nr -C playground dev:h5",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"start": "esno src/index.ts",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"c12": "^1.4.2",
"type-fest": "^4.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.25",
"@types/node": "^18.18.4",
"bumpp": "^9.2.0",
"eslint": "^8.51.0",
"esno": "^0.17.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.4.11"
}
}