-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 919 Bytes
/
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
{
"name": "node-lib-template",
"version": "1.0.0",
"description": "A Node.js Library starter template",
"keywords": [
"node",
"library",
"template"
],
"bugs": {
"url": "https://github.com/Songkeys/node-lib-template/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Songkeys/node-lib-template.git"
},
"license": "MIT",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:fast -- --dts-resolve",
"build:dev": "npm run build:fast -- --watch",
"build:fast": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"devDependencies": {
"prettier": "^2.8.4",
"tsup": "^6.6.2",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"publishConfig": {
"access": "public"
}
}