-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "@suger-tdy/typescript-starter",
"version": "0.0.0",
"packageManager": "pnpm@7.33.6",
"description": "starter project for typescript",
"keywords": [
"typescript-starter",
"ts-starter"
],
"license": "MIT",
"author": "tangdaoyuan <1197633750@qq.com> (https://github.com/tangdaoyuan/)",
"repository": {
"type": "git",
"url": "git+https://github.com/tangdaoyuan/typescript-starter.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "tsx ./src/index.ts",
"play": "npm -C playground run dev",
"stub": "unbuild --stub",
"build": "unbuild",
"prepublishOnly": "pnpm run build",
"release": "bumpp --tag --commit --push && pnpm publish"
},
"bugs": {
"url": "https://github.com/tangdaoyuan/typescript-starter/issues"
},
"homepage": "https://github.com/tangdaoyuan/typescript-starter#readme",
"dependencies": {
"picocolors": "^1.0.0"
},
"devDependencies": {
"@suger-tdy/eslint-config": "1.1.14",
"bumpp": "9.2.0",
"esbuild": "0.19.2",
"eslint": "8.47.0",
"tsx": "3.12.7",
"typescript": "5.1.6",
"unbuild": "1.2.1",
"vite": "4.4.9",
"vitest": "0.34.2"
},
"publishConfig": {
"access": "public"
}
}