-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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": "friendly-charts",
"version": "0.0.23",
"description": "Screen reader friendly charts with minimal effort",
"type": "module",
"files": [
"dist/*"
],
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./locale/en-US": "./dist/locale/en-US.js",
"./locale/de-DE": "./dist/locale/de-DE.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsup src/index.ts src/locale/*.ts --format esm,iife --sourcemap --dts --clean",
"check": "tsc --noEmit",
"check:watch": "npm run check -- --watch",
"format": "prettier --ignore-path .gitignore --write src README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sophiamersmann/friendly-charts.git"
},
"keywords": [
"charts",
"keyboard accessible",
"screen reader"
],
"author": "Sophia Mersmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/sophiamersmann/friendly-charts/issues"
},
"homepage": "https://github.com/sophiamersmann/friendly-charts#readme",
"devDependencies": {
"prettier": "^2.7.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
},
"dependencies": {
"nanoid": "^4.0.0"
}
}