-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "innenu-generator",
"version": "0.0.22",
"description": "inNENU 生成器",
"repository": {
"type": "git",
"url": "[email protected]:inNENU/generator.git"
},
"license": "Mr.Hope LICENSE",
"author": {
"name": "Mr.Hope",
"email": "[email protected]",
"url": "https://mister-hope.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./typings": {
"types": "./typings.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"typings.d.ts"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin esbuild",
"clean": "rimraf dist typings.d.ts",
"lint": "eslint . --fix && pnpm lint:prettier --write",
"lint:check": "eslint . && pnpm lint:prettier",
"lint:prettier": "prettier --check .",
"prepare": "husky",
"prepublish": "pnpm build",
"test": "vitest"
},
"nano-staged": {
"**/*": "prettier --write -u",
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"@mr-hope/assert-type": "^3.0.0",
"ali-oss": "^6.22.0",
"js-yaml": "^4.1.0",
"upath": "^2.0.1"
},
"devDependencies": {
"@types/ali-oss": "6.16.11",
"@types/js-yaml": "4.0.9",
"@types/node": "22.10.5",
"eslint": "9.18.0",
"eslint-config-mister-hope": "0.4.1",
"husky": "9.1.7",
"nano-staged": "0.8.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.30.1",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"typescript": "5.7.3",
"vitest": "3.0.0-beta.4"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}