-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "spreadsheet",
"build": "./build.js",
"version": "0.1.0",
"type": "module",
"dependencies": {
"@codemirror/autocomplete": "latest",
"@codemirror/language": "latest",
"@codemirror/state": "latest",
"@codemirror/view": "latest",
"@j-cake/jcake-utils": "latest",
"@lezer/highlight": "latest",
"@react-hook/event": "latest",
"@react-hook/mouse-position": "latest",
"@react-hook/resize-observer": "latest",
"chalk": "latest",
"chrono-node": "https://github.com/wanasit/chrono.git",
"expression": "link:../expression/expression-js/build/pkg",
"lucide-react": "latest",
"luxon": "latest",
"react": "latest",
"react-dom": "latest"
},
"scripts": {
"build": "build phony:all phony:install"
},
"devDependencies": {
"@lezer/lr": "latest",
"@types/luxon": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"builder": "link:../../builder",
"chalk": "latest",
"obsidian": "latest",
"typescript": "latest",
"unplugin-lezer": "latest"
},
"imports": {
"#app": "./build/index.js",
"#unit": "./build/unit.js"
},
"deploy": {
"main": "run.js",
"imports": {
"#app": "./index.js",
"#unit": "./unit.js"
},
"scripts": null
}
}