-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.03 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
{
"name": "@sourceacademy/conductor",
"packageManager": "yarn@4.10.3",
"version": "0.5.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./common": {
"types": "./dist/common/index.d.ts",
"import": "./dist/common/index.js"
},
"./conduit": {
"types": "./dist/conduit/index.d.ts",
"import": "./dist/conduit/index.js"
},
"./host": {
"types": "./dist/conductor/host/index.d.ts",
"import": "./dist/conductor/host/index.js"
},
"./util": {
"types": "./dist/conductor/util/index.d.ts",
"import": "./dist/conductor/util/index.js"
},
"./module": {
"types": "./dist/conductor/module/index.d.ts",
"import": "./dist/conductor/module/index.js"
},
"./types": {
"types": "./dist/conductor/types/index.d.ts",
"import": "./dist/conductor/types/index.js"
},
"./runner": {
"types": "./dist/conductor/runner/index.d.ts",
"import": "./dist/conductor/runner/index.js"
},
"./stdlib": {
"types": "./dist/conductor/stdlib/index.d.ts",
"import": "./dist/conductor/stdlib/index.js"
}
},
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"prepack": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/conductor.git"
},
"author": "tsammeow",
"license": "ISC",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/source-academy/conductor/issues"
},
"homepage": "https://github.com/source-academy/conductor#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"glob": "^11.0.1",
"rollup": "^4.34.1",
"rollup-plugin-modify": "^3.0.0",
"tslib": "^2.8.1",
"typescript": "^5.5.3"
}
}