-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "shumei",
"version": "0.1.3",
"description": "Actor system and concurrency for the web.",
"keywords": [
"concurrency",
"actor"
],
"repository": "https://github.com/meh/shumei",
"author": "meh. <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"src",
"dist"
],
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/lodash": "^4.14.162",
"eslint": "^8.10.0",
"prettier": "^2.5.1",
"rollup": "^2.29.0",
"rollup-plugin-ts": "^2.0.5",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"axax": "^0.2.2",
"lodash": "^4.17.20",
"queueable": "^4.1.4",
"uuid": "^8.3.1"
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"format": "prettier --write \"src/**/**/*\"",
"lint": "yarn tsc -b && prettier --ignore-path .gitignore --check . && eslint --ignore-path .gitignore .",
"prepublish:public": "npm run build",
"publish:public": "npm publish --access public"
}
}