-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.37 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
{
"name": "@prsm/ngn",
"version": "1.5.5",
"description": "",
"author": "nvms <pyersjonathan@gmail.com>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:core && npm run build:packages:input && npm run build:packages:2d",
"build:core": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
"build:packages:input": "tsup src/packages/input/index.ts --format cjs,esm --dts --minify --clean --out-dir dist/packages/input",
"build:packages:2d": "tsup src/packages/2d/index.ts --format cjs,esm --dts --minify --clean --out-dir dist/packages/2d",
"test": "tsx src/tests/index.ts",
"test:watch": "nodemon --watch src --watch tests --exec \"clear && pnpm run test\" --ext ts",
"release": "bumpp package.json --commit 'Release %s' --push --tag && pnpm publish --access public"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./input": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"bumpp": "^9.1.0",
"manten": "^0.3.0",
"nodemon": "^2.0.20",
"tsup": "^6.7.0",
"tsx": "^3.10.1",
"typescript": "^4.8.4"
}
}