forked from Bnaya/objectbuffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.58 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
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
{
"name": "@bnaya/objectbuffer",
"description": "Object-like api, backed by an array buffer",
"version": "0.31.2",
"main": "dist/objectbuffer.umd.js",
"module": "dist/objectbuffer.esm.js",
"types": "dist/index.d.ts",
"author": "Bnaya Peretz <me@bnaya.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:Bnaya/objectbuffer.git"
},
"bugs": {
"url": "https://github.com/Bnaya/objectbuffer/issues"
},
"keywords": [
"sharedarraybuffer",
"arraybuffer",
"shared memory",
"webworker",
"objectbuffer",
"object-buffer"
],
"scripts": {
"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",
"babel-build": "yarn babel src -d dist --extensions '.ts' --ignore '**/*.test.ts'",
"cleanup": "rimraf dist",
"build": "yarn cleanup; yarn babel-build; yarn build-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.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@changesets/cli": "^2.17.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.0.2",
"@types/node": "^14.17.19",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"assemblyscript": "^0.19.16",
"babel-loader": "^8.2.2",
"benchmark": "^2.1.4",
"concurrently": "^6.2.1",
"core-js": "^3.18.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"expose-gc": "^1.0.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"jest": "^27.2.2",
"kind-of": "^6.0.3",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.2.1",
"typedoc": "^0.22.4",
"typedoc-plugin-markdown": "^3.11.2",
"typescript": "^4.4.3",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0",
"worker-loader": "^3.0.8"
},
"files": [
"dist",
"src",
"README",
"COMMIT",
"LICENSE"
],
"packageManager": "yarn@3.0.2"
}