-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
{
"name": "@seayu/utils",
"type": "module",
"version": "0.0.4",
"description": "some of JavaScript / TypeScript utils",
"author": "seayu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sea-yu/utils.git"
},
"homepage": "https://github.com/sea-yu/utils",
"bugs": "https://github.com/sea-yu/utils/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "tsup",
"dev": "tsup --watch",
"run": "esno src/index.ts",
"test": "vitest",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit",
"up": "taze major -I"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.0",
"@types/node": "^18.17.17",
"bumpp": "^9.2.0",
"eslint": "^8.49.0",
"esno": "^0.17.0",
"taze": "^0.11.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
}
}