-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.78 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
{
"name": "@microbit/makecode-embed",
"version": "0.0.0",
"description": "",
"keywords": [],
"type": "module",
"sideEffects": false,
"author": "Matt Hillsdon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microbit-foundation/makecode-embed"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"exports": {
"./vanilla": {
"import": "./dist/vanilla/index.js",
"types": "./dist/vanilla/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"ci": "npm run lint && npm run build && npm run build:storybook",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"tslib": ">=2.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"prettier": "^3.2.5",
"storybook": "^8.2.9",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}