-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 986 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
{
"name": "@prsm/arc",
"version": "2.2.8",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"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",
"benchmark": "tsx tests/benchmark.ts",
"release": "bumpp package.json --commit 'Release %s' --push --tag && pnpm publish --access public"
},
"author": "nvms",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.35",
"bumpp": "^9.1.0",
"manten": "^0.1.0",
"tsup": "^6.5.0",
"tsx": "^3.4.2",
"typescript": "^4.7.2"
},
"dependencies": {
"dot-wild": "^3.0.1",
"lodash": "^4.17.21"
}
}