-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 821 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 821 Bytes
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
{
"name": "@prsm/ids",
"version": "1.1.1",
"description": "",
"main": "./dist/index.js",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify",
"test": "tsx tests/index.ts",
"release": "bumpp package.json --commit 'Release %s' --push --tag && pnpm publish --access public"
},
"author": "nvms",
"license": "ISC",
"dependencies": {
"long": "^5.2.1"
},
"devDependencies": {
"bumpp": "^9.1.0",
"manten": "^0.6.0",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "^4.9.5"
}
}