forked from replit/codemirror-interact
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 943 Bytes
/
package.json
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
{
"name": "@replit/codemirror-interact",
"description": "Interact with custom values",
"version": "6.3.0",
"license": "MIT",
"author": {
"name": "tga",
"email": "tga@space55.xyz"
},
"type": "module",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"dev": "vite ./dev",
"build": "cm-buildhelper src/interact.ts",
"test": "cm-runtests",
"prepare": "npm run build"
},
"files": [
"dist/",
"src/"
],
"peerDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0"
},
"devDependencies": {
"@codemirror/buildhelper": "^0.1.16",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/view": "^6.0.0",
"codemirror": "^6.0.0",
"vite": "^3.0.0"
},
"dependencies": {
"@codemirror/state": "^6.2.1"
}
}