-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "struct-buffer",
"version": "5.2.0",
"description": "Add structure to ArrayBuffer",
"private": false,
"main": "./dist/umd/struct-buffer.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build:umd": "webpack -c webpack.config.js",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:umd && npm run build:esm",
"test": "jest"
},
"keywords": [
"struct-buffer",
"ArrayBuffer",
"DataView",
"pack",
"unpack",
"buffer",
"Struct"
],
"author": "Ajanuw",
"license": "MIT",
"homepage": "https://github.com/januwA/struct-buffer",
"repository": {
"type": "git",
"url": "https://github.com/januwA/struct-buffer.git"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"node-notifier": "^10.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {}
}