-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 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": "@cursorless/cursorless-org",
"version": "0.1.0",
"description": "The cursorless.org website",
"license": "MIT",
"private": true,
"type": "module",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"exports": {
".": {
"cursorless:bundler": "./src/index.ts",
"default": "./out/index.js"
}
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "http-server out -a 127.0.0.1 -p 8080",
"lint": "next lint",
"compile": "tsc --build",
"watch": "tsc --build --watch",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build"
},
"dependencies": {
"@cursorless/common": "workspace:*",
"@cursorless/cheatsheet": "workspace:*",
"@cursorless/cursorless-engine": "workspace:*",
"@cursorless/test-case-component": "workspace:*",
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@next/mdx": "15.3.3",
"next": "15.3.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-player": "2.16.0"
},
"devDependencies": {
"@svgr/webpack": "8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/mdx": "2.0.13",
"@types/node": "20.17.50",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5",
"autoprefixer": "10.4.21",
"eslint": "9.28.0",
"eslint-config-next": "15.3.3",
"http-server": "14.1.1",
"postcss": "8.5.4",
"tailwindcss": "3.4.14",
"typescript": "5.8.3"
}
}