-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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
{
"name": "@betty-blocks/component-sdk",
"version": "1.0.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Benjamin Kagia <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bettyblocks/component-sdk.git"
},
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:docs": "typedoc src/index.ts --exclude tests/**/*.test.ts",
"fix": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
"fix:write": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"lint": "eslint src tests --ext .ts",
"test": "ts-node node_modules/tape/bin/tape tests/**/*.test.ts",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@tsconfig/node22": "^22.0.0",
"@types/react": "^18.3.3",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"prettier": "3.3.3",
"semantic-release": "^24.0.0",
"tape": "^5.8.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
}
}