-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "@w2xi/utils",
"version": "0.0.1",
"description": "Opinionated collection of common utils",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/w2xi/utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/w2xi/utils.git"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prepublishOnly": "nr build",
"dev": "nr build --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "vitest",
"type": "tsc --noEmit"
},
"keywords": ["utils"],
"files": ["dist"],
"author": "w2xi",
"license": "MIT",
"devDependencies": {
"bumpp": "^9.4.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^2.0.2"
}
}