-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "@sourceacademy/modules-lib",
"description": "Common library used by Source Academy bundles and tabs",
"private": true,
"type": "module",
"devDependencies": {
"@sourceacademy/modules-buildtools": "workspace:^",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "4.1.4",
"eslint": "^9.35.0",
"playwright": "^1.55.1",
"typedoc": "^0.28.9",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-markdown": "^4.7.0",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^6.0.2",
"vitest": "4.1.4",
"vitest-browser-react": "^2.1.0"
},
"exports": {
"./tabs/index": null,
"./tabs/MultiItemDisplay": "./dist/tabs/MultiItemDisplay/index.js",
"./tabs/*": "./dist/tabs/*.js",
"./tabs": {
"typedoc": "./dist/tabs/index.js",
"default": null
},
"./types": "./dist/types/index.js",
"./*": "./dist/*.js"
},
"dependencies": {
"@blueprintjs/core": "^6.0.0",
"@blueprintjs/icons": "^6.0.0",
"es-toolkit": "^1.44.0",
"js-slang": "^1.0.85",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"scripts-info": {
"docs": "Build the documentation for documentation server using Typedoc"
},
"scripts": {
"build": "tsc --project ./tsconfig.prod.json",
"docs": "typedoc",
"lint": "eslint src",
"postinstall": "yarn build",
"tsc": "tsc --project ./tsconfig.json",
"test": "buildtools test --project ."
}
}