-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "@sourceacademy/bundle-pix_n_flix",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@sourceacademy/modules-buildtools": "workspace:^",
"@types/react": "^19.0.0",
"@vitest/browser-playwright": "4.1.4",
"playwright": "^1.55.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^6.0.2",
"vitest": "4.1.4",
"vitest-browser-react": "^2.1.0"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js"
},
"scripts": {
"tsc": "buildtools tsc .",
"build": "buildtools build bundle .",
"lint": "buildtools lint .",
"test": "buildtools test --project .",
"postinstall": "buildtools compile",
"serve": "yarn buildtools serve"
},
"scripts-info": {
"build": "Compiles the given bundle to the output directory",
"lint": "Runs ESlint on the code in the bundle",
"serve": "Starts the modules server",
"test": "Runs unit tests defined for the bundle",
"tsc": "Runs the Typescript compiler and produces the library version of the bundle"
}
}