-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 KB
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
60
61
62
63
64
65
66
67
{
"name": "@napolab/typescript",
"version": "0.0.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",
"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",
"version": "changeset version",
"publish": "changeset publish"
},
"author": "@naporin0624",
"license": "MIT",
"overrides": {
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@naporin0624/eslint-config": "^0.9.0",
"@rollup/plugin-run": "^3.0.1",
"@tsconfig/esm": "^1.0.3",
"@tsconfig/node18": "^2.0.0",
"@tsconfig/recommended": "^1.0.2",
"deepmerge": "^4.3.1",
"esbuild": "^0.17.17",
"eslint": "^8.38.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rollup": "^3.20.7",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-externals": "^5.1.2",
"rollup-plugin-tsconfig-paths": "^1.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.30.1"
},
"dependencies": {
"@open-draft/logger": "^0.3.0",
"dotenv": "^16.0.3",
"neverthrow": "^6.0.0",
"puppeteer": "^19.11.1"
},
"volta": {
"node": "18.16.0",
"npm": "9.6.5"
},
"engines": {
"yarn": "Don't use 'yarn'!!! Please use 'npm'!!!",
"node": "18.16.0",
"npm": "9.6.5"
}
}