-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "fregejs",
"version": "0.4.0",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.4.1",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^3.0.0",
"tsup": "^7.1.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"scripts": {
"test": "npx tsx --test src/**/__tests__/*.test.ts",
"style:check": "prettier --check src/**/*.ts src/**/__tests__/*.test.ts",
"style:fix": "prettier --write src/**/*.ts src/**/__tests__/*.test.ts",
"build": "npx tsup src/index.ts --format cjs,esm --dts ",
"lint": "tsc",
"release": "pnpm run build && npx changeset publish"
},
"keywords": [
"logic",
"propositional-logic",
"proof-assistant",
"logic-client"
],
"author": {
"name": "Luca Poe",
"url": "https://github.com/iamthepoe"
},
"homepage": "https://github.com/etec-sa",
"repository": {
"type": "git",
"url": "https://github.com/etec-sa/frege.git"
},
"bugs": {
"url": "https://github.com/Etec-SA/frege/issues",
"email": "etecsa.contato@gmail.com"
},
"license": "MIT",
"description": "A propositional logic library written in Typescript",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}