-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
57
58
59
{
"name": "@napolab/typescript",
"version": "1.1.0",
"private": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "NODE_ENV=development DEBUG=1 rollup -c rollup.config.dev.mjs -w",
"prebuild": "rimraf dist",
"build": "rollup -c",
"start": "NODE_ENV=production node dist/index.mjs",
"lint": "npm-run-all -p lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fmt": "npm-run-all -s fmt:*",
"fmt:eslint": "eslint --fix .",
"fmt:prettier": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "vitest"
},
"author": "@naporin0624",
"license": "MIT",
"overrides": {
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@naporin0624/eslint-config": "^0.13.0",
"@rollup/plugin-run": "^3.0.1",
"@tsconfig/esm": "^1.0.4",
"@tsconfig/node18": "^18.2.1",
"@tsconfig/recommended": "^1.0.2",
"deepmerge": "^4.3.1",
"esbuild": "^0.18.20",
"eslint": "^8.48.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-externals": "^6.1.1",
"rollup-plugin-tsconfig-paths": "^1.5.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
},
"dependencies": {
"@open-draft/logger": "^0.3.0",
"dotenv": "^16.3.1",
"neverthrow": "^6.0.0"
},
"volta": {
"node": "18.17.0",
"npm": "9.7.2"
}
}