-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.34 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
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
{
"name": "truth-table-ast",
"version": "1.0.7",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"test": "node --no-warnings --experimental-vm-modules $( [ -f ./node_modules/.bin/jest ] && echo ./node_modules/.bin/jest || which jest ) --coverage",
"cli": "tsx src/cli.ts",
"dev": "tsx src/app.ts",
"lint": "eslint -c eslint.config.mjs",
"build": "rimraf dist && npx tsx build.ts && npm run build:dts && ./fixup.sh",
"build:mjs": "tsc -p tsconfig.mjs.json && tsc-alias -p tsconfig.mjs.json",
"build:dts": "mkdir dist/types && ./node_modules/.bin/dts-bundle-generator -o dist/types/index.d.ts --verbose --external-inlines=@babel/types -- src/index.ts"
},
"bin": {
"truth-table": "dist/cjs/index.js",
"tt": "dist/cjs/index.js"
},
"typesVersions": {
"*": {
".": [
"./dist/types/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"engines": {
"node": ">=20"
},
"keywords": [
"table",
"ast",
"ast-transformations",
"ast-generation",
"truth",
"ast-tree",
"truth-tables",
"ast-parser",
"truth-table",
"abstract-syntax-tree",
"table-formatter",
"truth-table-generator",
"ast-interpreter",
"abstract-syntax-trees"
],
"author": "Ashu11-A",
"repository": {
"type": "git",
"url": "git+https://github.com/Ashu11-A/Truth-Table.git"
},
"bugs": {
"url": "https://github.com/Ashu11-A/Truth-Table/issues"
},
"homepage": "https://github.com/Ashu11-A/Truth-Table",
"license": "MIT",
"description": "Formatters for truth tables",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.9.1",
"glob": "^11.0.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}