-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.51 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
{
"name": "@cursorless/cheatsheet",
"version": "0.1.0",
"description": "Core cheatsheet react component",
"main": "./out/index.js",
"scripts": {
"test": "jest",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build",
"compile:tsc": "tsc --build",
"compile:esbuild": "esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js",
"compile": "pnpm compile:tsc && pnpm compile:esbuild",
"watch:tsc": "pnpm compile:tsc --watch",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch": "pnpm run --filter @cursorless/cheatsheet --parallel '/^watch:.*/'"
},
"keywords": [],
"author": "",
"license": "MIT",
"types": "./out/index.d.ts",
"exports": {
".": {
"cursorless:bundler": "./src/index.ts",
"default": "./out/index.js"
}
},
"sideEffects": [
"*.css"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-string-replace": "1.1.1",
"react-use": "17.6.0"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.3.0",
"@types/jest": "29.5.14",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5",
"@types/react-helmet": "6.1.11",
"jest": "29.7.0",
"jest-environment-jsdom": "30.0.0-beta.3",
"ts-jest": "29.3.4",
"typescript": "5.8.3"
},
"type": "module"
}