-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 928 Bytes
/
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
{
"name": "@finos/a11y-theme-builder-sdk",
"version": "1.1.0",
"description": "Accessibility Theme Builder SDK",
"author": "Keith Smith <[email protected]>",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"accessibility",
"theme"
],
"scripts": {
"build": "npm run build-lib && npm run build-docs",
"build-lib": "npm install && tsc && npm pack ./",
"build-docs": "typedoc --excludeNotDocumented ./src/index.ts",
"dotest": "ts-node test/dotest.ts",
"test": "jest",
"prepare": "tsc"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"jest": "^29.5.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/chroma-js": "^2.4.4",
"chroma-js": "^2.6.0"
}
}