-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "serde-as",
"version": "0.3.0",
"author": "yjhmelody <[email protected]>",
"license": "MIT",
"type": "module",
"description": "Serde-as is a simple (de)serialization framework for AssemblyScript",
"keywords": [
"assemblyscript",
"serde",
"serialize",
"deserialize",
"encode",
"decode"
],
"main": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com:yjhmelody/serde-as"
},
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"lint": "eslint .",
"build": "yarn workspace as-serde-transform build",
"checks": "yarn workspaces run checks",
"fmt": "prettier -w './**/*.ts' --config ./.prettierrc.cjs",
"fmt-check": "prettier -w './**/*.ts' --config ./.prettierrc.cjs --check",
"test": "yarn workspaces run test",
"test:ts": "yarn workspace as-serde-transform run test",
"test:as": "yarn workspace as-buffers run test && yarn workspace as-serde run test && yarn workspace as-serde-scale run test && yarn workspace as-serde-json run test",
"update-changelog": "conventional-changelog -i CHANGELOG.md -s",
"changelog": "conventional-changelog",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@as-pect/cli": "^8.1",
"@types/node": "^20.11",
"@typescript-eslint/eslint-plugin": "^5.62",
"@typescript-eslint/parser": "^5.62",
"eslint": "8.56.0",
"prettier": "^3.1",
"mocha": "^10.3",
"ts-node": "^10",
"conventional-changelog": "^5.1",
"typescript": "^5.3"
},
"publishConfig": {
"access": "public"
}
}