-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 917 Bytes
/
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
{
"name": "xobj",
"description": "Decoding and encoding JavaScript/TypeScript/JSON objects to binary format.",
"author": "Clark Kent",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "yarn wsrun -t -e -m build",
"lint": "yarn wsrun -e -m lint",
"test": "yarn wsrun -e -m test",
"coverage": "yarn wsrun -e -m coverage",
"clean": "yarn wsrun -e -m clean",
"clean-pages": "yarn wsrun -e -m clean-pages && rimraf node_modules",
"start": "yarn wsrun -e -m start",
"checkup": "yarn clean && yarn build && yarn lint && yarn coverage",
"release": "yarn build && yarn changeset publish",
"version": "yarn changeset version && yarn update-lock",
"update-lock": "yarn && git add yarn.lock"
},
"workspaces": [
"packages/*",
"samples/*"
],
"devDependencies": {
"@changesets/cli": "^2.26.0",
"rimraf": "^4.1.1",
"wsrun": "^5.2.4"
}
}