-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.98 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
74
75
76
77
78
79
80
81
{
"name": "taro-define-config",
"type": "commonjs",
"version": "0.10.5",
"packageManager": "[email protected]",
"description": "Provide a defineConfig function for tarojs config",
"keywords": [
"config",
"define-config",
"taro",
"taro-plugin",
"tarojs",
"typescript"
],
"license": "MIT",
"author": {
"name": "ntnyq",
"email": "[email protected]"
},
"homepage": "https://github.com/ntnyq/taro-define-config#readme",
"repository": "ntnyq/taro-define-config",
"bugs": {
"url": "https://github.com/ntnyq/taro-define-config/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"prepare": "husky",
"release": "run-s build release:check release:publish",
"release:check": "run-s lint typecheck",
"release:publish": "bumpp && pnpm publish",
"test": "vitest --typecheck",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@jridgewell/source-map": "^0.3.6",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^22.13.10",
"rollup": "^4.35.0",
"tapable": "^2.2.1",
"vite": "^6.2.1",
"webpack": "^5.98.0",
"webpack-chain": "^6.5.1",
"webpack-dev-server": "^5.2.0"
},
"devDependencies": {
"@ntnyq/eslint-config": "^4.0.0",
"@ntnyq/prettier-config": "^2.0.0",
"bumpp": "^10.0.3",
"eslint": "^9.22.0",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"nano-staged": {
"*.{js,ts,cjs,mjs,md,yml,yaml,json}": "eslint --fix"
}
}