generated from napolab/typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.54 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@napolab/worker_thread",
"version": "0.0.3",
"private": false,
"type": "module",
"main": "index.cjs",
"module": "index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.cjs"
},
"./package.json": "./package.json",
"./rollup-plugin": {
"types": "./rollup-plugin.d.ts",
"import": "./rollup-plugin.mjs",
"require": "./rollup-plugin.cjs"
}
},
"files": [
"dist",
"index.d.ts",
"index.cjs",
"index.cjs.map",
"index.mjs",
"index.mjs.map",
"rollup-plugin.cjs",
"rollup-plugin.cjs.map",
"rollup-plugin.mjs",
"rollup-plugin.mjs.map",
"rollup-plugin.d.ts",
"package.json",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"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",
"publish": "changeset publish"
},
"author": "@naporin0624",
"license": "MIT",
"overrides": {
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@naporin0624/eslint-config": "^0.11.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",
"eslint": "^8.39.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup": "^3.21.3",
"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.4",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.30.1"
},
"dependencies": {
"esbuild": "^0.17.18"
},
"volta": {
"node": "18.16.0",
"npm": "9.6.5"
},
"description": "rollup + esbuild 環境で worker を使うためのライブラリ",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/napolab/rollup-worker-thread-plugin.git"
},
"keywords": [
"rollup"
],
"bugs": {
"url": "https://github.com/napolab/rollup-worker-thread-plugin/issues"
},
"homepage": "https://github.com/napolab/rollup-worker-thread-plugin#readme"
}