-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "@bitarray/typedarray",
"version": "1.1.1",
"description": "A BitArray object exhibiting the interface of standard ecmascript TypedArray's",
"type": "module",
"typings": "./dist/esm/bit-typedarray.d.ts",
"exports": {
".": {
"types": "./dist/esm/bit-typedarray.d.ts",
"import": "./dist/esm/bit-typedarray.js",
"require": "./dist/cjs/bit-typedarray.js"
}
},
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.json",
"example": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" node example/index.mjs",
"postbuild": "bash ./scripts/postbuild.sh",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"style:fix": "prettier src/**/*.ts --write",
"style:check": "prettier src/**/*.ts --check",
"test": "node --test --loader ts-node/esm ./test/index.ts",
"test:ci": "set TS_NODE_PROJECT=./tsconfig.esm.json && node --no-warnings=ExperimentalWarning --loader ts-node/esm ./test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiing/Bit-TypedArray.git"
},
"keywords": [
"bitarray",
"typedarray"
],
"author": "swiing",
"license": "MIT",
"bugs": {
"url": "https://github.com/swiing/Bit-TypedArray/issues"
},
"homepage": "https://github.com/swiing/Bit-TypedArray#readme",
"devDependencies": {
"prettier": "3.4.2",
"ts-node": "^10.7.0",
"typescript": "^5.0.2"
},
"files": [
"dist"
]
}