-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
61
62
63
{
"name": "constant-sage",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "My awesome typescript library",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/4xii/constant-sage#readme",
"bugs": {
"url": "https://github.com/4xii/constant-sage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4xii/constant-sage.git"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"require": "./dist/index.d.cts",
"import": "./dist/index.d.ts"
},
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@sxzz/eslint-config": "^3.3.2",
"@sxzz/prettier-config": "^1.0.4",
"@types/node": "^20.4.8",
"bumpp": "^9.1.1",
"eslint": "^8.46.0",
"fast-glob": "^3.3.1",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"engines": {
"node": ">=16.14.0"
},
"prettier": "@sxzz/prettier-config"
}