-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.72 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
{
"name": "@itxtech/fdnext-core",
"version": "3.2.0",
"description": "Core fdnext memory chip parsing engine, rules, resources, runtime, CLI, and result contracts",
"license": "AGPL-3.0-or-later",
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/index.js"
},
"./decodepack": {
"types": "./dist/src/decodepack/index.d.ts",
"default": "./dist/decodepack.js"
},
"./runtime": {
"types": "./dist/src/runtime/index.d.ts",
"default": "./dist/runtime.js"
},
"./cli": {
"types": "./dist/src/cli/index.d.ts",
"default": "./dist/cli.js"
},
"./node-http": {
"types": "./dist/src/node-http/index.d.ts",
"default": "./dist/node-http.js"
}
},
"bin": {
"fdnext": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iTXTech/fdnext.git",
"directory": "packages/core"
},
"homepage": "https://github.com/iTXTech/fdnext/tree/master/packages/core",
"bugs": {
"url": "https://github.com/iTXTech/fdnext/issues"
},
"keywords": [
"fdnext",
"decodepack",
"flash",
"nand",
"memory",
"runtime",
"cli",
"parser"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rm -rf dist tsconfig.tsbuildinfo && tsc -b --emitDeclarationOnly && tsdown",
"test": "pnpm test:decodepack && pnpm test:integration && pnpm test:contract",
"test:decodepack": "node --import tsx --test --test-isolation=none 'test/decodepack/**/*.test.ts'",
"test:integration": "node --import tsx --test --test-isolation=none 'test/integration/**/*.test.ts'",
"test:contract": "node --import tsx --test --test-isolation=none test/result-contract.test.ts",
"test:dram": "node --import tsx --test --test-isolation=none 'test/decodepack/dram/**/*.test.ts'",
"test:dram:search": "node --import tsx --test test/decodepack/dram/search.pn.ts",
"test:parts": "node --import tsx --test --test-isolation=none 'test/decodepack/part-number/**/*.test.ts'",
"test:parts:micron": "node --import tsx --test --test-isolation=none 'test/decodepack/part-number/micron-*.test.ts'",
"test:parts:skhynix": "node --import tsx --test --test-isolation=none 'test/decodepack/part-number/skhynix-*.test.ts'",
"test:parts:samsung": "node --import tsx --test test/decodepack/part-number/samsung.test.ts",
"test:parts:kioxia": "node --import tsx --test test/decodepack/part-number/kioxia.test.ts",
"typecheck": "tsc -b --pretty false --emitDeclarationOnly"
}
}