forked from branciard/iscc-core-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.15 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.15 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
{
"name": "iscc-core-ts",
"version": "1.0.0",
"description": "Iscc core TypeScript implementation of iscc-core reference",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"unpkg": "./lib/esm/index",
"scripts": {
"build": "tsc -b && tsc -p tsconfig-cjs.json",
"typecheck": "tsc --noEmit",
"devtest": "jest -c=jest.config.cjs --no-cache src/code-data.test.ts -t 'handles 1MiB data robustly' --silent=false",
"fulltest": "npm run test && npm run test-isolated && npm run test-esm && npm run test-esm-isolated",
"test": "jest -c=jest.config.cjs --no-cache",
"test-isolated": "jest -c=jest-isolated.config.cjs --no-cache",
"test-esm": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -c=jest-esm.config.mjs --no-cache",
"test-esm-isolated": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -c=jest-esm-isolated.config.mjs --no-cache",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint ./src",
"make:docs/reference": "typedoc src/index.ts --out ./docs/generated/iscc-core-ts --excludeInternal"
},
"repository": {
"type": "git",
"url": "git+https://github.com/branciard/iscc-core-ts.git"
},
"keywords": [
"ISCC",
"ISCC-CORE"
],
"author": "francois branciard",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/branciard/iscc-core-ts/issues"
},
"homepage": "https://github.com/branciard/iscc-core-ts#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@types/seedrandom": "^3.0.8",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"bs58": "^6.0.0",
"hash-wasm": "^4.12.0",
"js-xxhash": "^5.0.1",
"rfc4648": "^1.5.4",
"seedrandom": "^3.0.5",
"xregexp": "^5.1.2"
}
}