-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.99 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
68
69
70
71
{
"name": "@wraker/core",
"version": "1.1.3",
"main": "./dist/wraker.js",
"module": "./dist/wraker.mjs",
"types": "./dist/wraker.d.ts",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"types": "./dist/wraker.d.ts",
"import": "./dist/wraker.mjs",
"require": "./dist/wraker.js",
"node": "./dist/wraker.js",
"default": "./dist/wraker.js"
}
},
"scripts": {
"build": "rollup -c",
"dev": "vitest --watch --no-coverage",
"dev:coverage": "vitest --watch --coverage",
"test": "vitest --no-watch --no-coverage",
"coverage": "vitest --no-watch --coverage",
"test:coverage": "npm run coverage",
"bump:patch": "npm version patch && git push && git push --tags",
"bump:minor": "npm version minor && git push && git push --tags",
"bump:major": "npm version major && git push && git push --tags",
"release:npm": "npm run build && npm publish --access public",
"docs": "typedoc --out ./docs ./src/index.ts"
},
"type": "module",
"keywords": [
"worker",
"express",
"typescript"
],
"license": "MIT",
"description": "The go-to express-like API for Web Workers",
"author": "josselinonduty <contact@josselinonduty.fr>",
"repository": {
"type": "git",
"url": "git+https://github.com/wrakerjs/core.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.14.1",
"@vitest/browser": "^3.1.2",
"@vitest/coverage-istanbul": "^3.1.2",
"esbuild": "^0.25.2",
"playwright": "^1.52.0",
"rollup": "^4.40.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-esbuild": "^6.2.1",
"typedoc": "^0.28.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"dependencies": {
"js-cookie": "^3.0.5"
},
"directories": {
"doc": "docs"
},
"bugs": {
"url": "https://github.com/wrakerjs/core/issues"
},
"homepage": "https://github.com/wrakerjs/core#readme"
}