-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "language-directory",
"packageManager": "yarn@4.6.0",
"version": "0.0.6",
"description": "A directory for languages supported by Source Academy.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c && yarn make-json",
"start": "rollup -cw --watch.onEnd='yarn make-json' & http-server ./dist -p8125 -c-1 --cors &",
"make-json": "node ./scripts/make-json.js > dist/directory.json",
"prepack": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/language-directory.git"
},
"author": "tsammeow",
"license": "ISC",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/source-academy/language-directory/issues"
},
"homepage": "https://github.com/source-academy/language-directory#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"http-server": "^14.1.1",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"typescript": "^5.5.3"
}
}