-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.31 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.31 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@pie-element/multiple-choice",
"version": "13.1.0",
"description": "React implementation of multiple-choice element synced from pie-elements",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/style": "^0.8.0",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"@pie-lib/correct-answer-toggle": "workspace:*",
"@pie-lib/render-ui": "workspace:*",
"@pie-lib/translator": "workspace:*",
"classnames": "^2.2.5",
"debug": "^4.1.1",
"lodash-es": "^4.17.23",
"prop-types": "^15.8.1",
"react-transition-group": "^4.4.5",
"@pie-element/shared-configure-events": "workspace:*",
"@pie-lib/config-ui": "workspace:*",
"@pie-lib/editable-html-tip-tap": "workspace:*",
"@pie-element/shared-controller-utils": "workspace:*",
"@pie-element/shared-player-events": "workspace:*",
"@pie-element/shared-math-rendering-mathjax": "workspace:*"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"exports": {
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./delivery": {
"development": "./src/delivery/index.ts",
"types": "./dist/delivery/index.d.ts",
"default": "./dist/delivery/index.js"
},
"./author": {
"development": "./src/author/index.ts",
"types": "./dist/author/index.d.ts",
"default": "./dist/author/index.js"
},
"./controller": {
"development": "./src/controller/index.ts",
"types": "./dist/controller/index.d.ts",
"default": "./dist/controller/index.js"
},
"./print": {
"development": "./src/print/index.tsx",
"types": "./dist/print/index.d.ts",
"default": "./dist/print/index.js"
}
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"devDependencies": {
"vite": "^8.0.1",
"typescript": "^5.9.3",
"@vitejs/plugin-react": "^6.0.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
},
"scripts": {
"build": "bun x vite build && bun x vite build --config vite.config.iife.ts && bun x tsc --emitDeclarationOnly",
"dev": "bun x vite",
"demo": "bun x vite --mode demo",
"test": "bun x vitest run"
}
}