-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "create-proj",
"version": "1.9.0",
"description": "create project - npm create proj",
"scripts": {
"prepare": "node .husky/prepare.mjs",
"lint": "biome check",
"lint:fix": "biome check --fix",
"build": "NODE_ENV=production vite build",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"sideEffects": false,
"main": "./dist/index.cjs",
"bin": {
"create-proj": "./bin/index.cjs"
},
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"templates"
],
"keywords": [
"create-creator",
"create-proj"
],
"author": "云淡然 <hi@ydr.me> (https://ydr.me)",
"license": "MIT",
"homepage": "https://github.com/FrontEndDev-org/create-proj",
"repository": {
"type": "git",
"url": "git+https://github.com/FrontEndDev-org/create-proj.git"
},
"dependencies": {
"create-creator": "^2.13.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/types": "^19.5.0",
"@types/node": "^22.13.4",
"@vitest/coverage-v8": "^3.0.5",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"taze": "^18.5.0",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-externalize-deps": "^0.9.0",
"vitest": "^3.0.5"
}
}