-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "@sourceacademy/autocomplete",
"version": "0.0.1",
"packageManager": "yarn@4.6.0",
"description": "The autocomplete plugin for Conductor framework",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"prepack": "yarn build",
"watch": "rollup -cw --bundleConfigAsCjs",
"lint": "eslint --concurrency=auto src",
"format": "prettier --write \"**/*.{ts,tsx,json,js,mjs}\"",
"format:ci": "prettier --list-different \"**/*.{ts,tsx,json,js,mjs}\"",
"test": "jest",
"test-coverage": "jest --coverage",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/autocomplete.git"
},
"license": "ISC",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"bugs": {
"url": "https://github.com/source-academy/autocomplete/issues"
},
"homepage": "https://github.com/source-academy/autocomplete#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@sourceacademy/conductor": "^0.3.0",
"@types/jest": "^30.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"rollup": "^4.60.0",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"peerDependencies": {
"@sourceacademy/conductor": ">=0.3.0"
}
}