-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
99 lines (99 loc) · 3.76 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
{
"name": "@bnaya/objectbuffer",
"description": "Object-like api, backed by an array buffer",
"version": "0.32.1",
"license": "MIT",
"main": "./dist/objectbuffer.umd.js",
"module": "./dist/objectbuffer.esm.js",
"types": "./dist/types.d.ts",
"author": "Bnaya Peretz <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:Bnaya/objectbuffer.git"
},
"bugs": {
"url": "https://github.com/Bnaya/objectbuffer/issues"
},
"keywords": [
"sharedarraybuffer",
"arraybuffer",
"shared memory",
"webworker",
"objectbuffer",
"object-buffer"
],
"scripts": {
"prepare": "husky",
"lint": "concurrently \"eslint src --ext .js,.jsx,.ts,.tsx\" \"tsc --noEmit --emitDeclarationOnly false\"",
"test": "jest",
"test-coverage": "jest --coverage",
"build-declarations": "tsc -p tsconfig.build.json --isolatedModules false --declaration true --declarationMap true --noEmit false --emitDeclarationOnly true",
"bundle-declarations": "dts-bundle-generator dist-tsc/index.d.ts -o dist/types.d.ts",
"babel-build": "yarn babel src -d dist --extensions '.ts' --ignore '**/*.test.ts'",
"cleanup": "rimraf dist dist-tsc",
"build": "NODE_ENV=production yarn cleanup && yarn build-declarations && yarn bundle-declarations && rollup -c; echo `git rev-parse HEAD` > COMMIT",
"prepack": "yarn build",
"release": "yarn changeset publish",
"browser-playground": "webpack-dev-server --mode=development --config playground/webpack.config.js --entry ./playground/main.js --open",
"webpack-playground": "webpack-dev-server --mode=development --config playground/webpack.config.js --open",
"generate-docs": "rimraf -f docs/generated/ && typedoc --readme none --out docs/generated/ src/index.ts",
"generate-structs": "yarn ts-node src/structsGenerator/run.ts",
"asbuild:untouched": "asc assemblyscript-allocator-experiment/assembly/index.ts --target debug",
"asbuild:optimized": "asc assemblyscript-allocator-experiment/assembly/index.ts --target release",
"asbuild": "yarn asbuild:untouched && yarn asbuild:optimized",
"as:test": "node tests",
"deoptigate-benchmarks": "npx deoptigate benchmarks/main-register-ts-node.js",
"v8-deopt-viewer-benchmarks": "npx v8-deopt-viewer benchmarks/main-register-ts-node.js --open",
"benchmark": "node benchmarks/main-register-ts-node.js"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@changesets/cli": "^2.27.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"assemblyscript": "^0.27.27",
"babel-loader": "^9.1.3",
"benchmark": "^2.1.4",
"concurrently": "^8.2.2",
"core-js": "^3.37.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"expose-gc": "^1.0.0",
"gh-pages": "^6.1.1",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"kind-of": "^6.0.3",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"rimraf": "^5.0.7",
"rollup": "^4.17.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"worker-loader": "^3.0.8"
},
"files": [
"dist",
"README",
"COMMIT",
"LICENSE"
],
"packageManager": "[email protected]"
}