-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "rdt-utils",
"version": "0.2.44",
"description": "Library of typescript utilities",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"private": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./async": {
"types": "./dist/async/index.d.ts",
"import": "./dist/async/index.js"
},
"./assert": {
"types": "./dist/assert/index.d.ts",
"import": "./dist/assert/index.js"
},
"./buffer": {
"types": "./dist/buffer/index.d.ts",
"import": "./dist/buffer/index.js"
},
"./cancellation": {
"types": "./dist/cancellation/index.d.ts",
"import": "./dist/cancellation/index.js"
},
"./crypto": {
"types": "./dist/crypto/index.d.ts",
"import": "./dist/crypto/index.js"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"!dist/**/*.map",
"!dist/**/*.test.js",
"!dist/**/*.test.ts",
"!.vscode",
"LICENSE"
],
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"license": "MIT",
"scripts": {
"build": "tsup",
"rel:patch": "npm version patch && npm run build && npm pack && npm publish --access public",
"rel:minor": "npm version minor && npm run build && npm pack && npm publish --access public",
"rel:major": "npm version major && npm run build && npm pack && npm publish --access public",
"help": "tsup --help"
}
}