-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.56 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"homepage": "https://github.com/erikpukinskis/codedocs",
"packageManager": "yarn@1.22.19",
"name": "codedocs",
"version": "0.18.0",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/erikpukinskis/codedocs.git"
},
"main": "./dist/lib.umd.js",
"module": "./dist/lib.es.js",
"files": [
"dist",
"macro"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/lib.es.js",
"require": "./dist/lib.umd.js"
},
"./style.css": "./dist/style.css",
"./macro": {
"types": "./dist/index.d.ts",
"import": "./macro/index.js",
"require": "./macro/index.js"
}
},
"dependencies": {
"@dnd-kit/react": "^0.3.2",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"ace-builds": "^1.43.6",
"body-scroll-lock": "^4.0.0-beta.0",
"copy-text-to-clipboard": "^3.0.1",
"highlight-words": "^1.2.1",
"immer": "^11.1.4",
"lodash": "^4.17.21",
"minisearch": "^5.0.0",
"react-ace": "^14.0.1",
"react-laag": "^2.0.4",
"react-use": "^17.4.0",
"short-uuid": "^4.2.2",
"use-keyboard-shortcut": "^1.1.6"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-common-types": "^7.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.0",
"@types/body-scroll-lock": "^3.1.2",
"@types/lodash": "^4.14.186",
"@types/node": "16.18.8",
"@types/prettier": "^2.7.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "^5.12.1",
"@vanilla-extract/css": "^1.17.5",
"@vanilla-extract/recipes": "^0.5.7",
"@vanilla-extract/vite-plugin": "3",
"@vitejs/plugin-react": "^1.2.0",
"babel-plugin-macros": "^3.1.0",
"chokidar-cli": "^3.0.0",
"eslint": "8.29.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "7.31.11",
"happy-dom": "^20.0.11",
"jsdom": "^27.2.0",
"msw": "^2.12.3",
"prettier": "2.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.2.1",
"tsc-alias": "^1.7.0",
"typescript": "4.9.4",
"vite": "^3.1.8",
"vite-plugin-babel-macros": "^1.0.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.14"
},
"scripts": {
"all": "yarn && yarn build && yarn fix && yarn check:types && yarn test && echo `echo 8J+OiSBEaWQgYWxs | base64 -d`",
"build": "rm -rf dist/* && yarn build:lib && yarn build:types",
"build:docs": "vite build --config vite.docs.config.js --mode development && mv site/docs/index.html site && rmdir site/docs && cp site/index.html site/404.html",
"build:lib": "vite build --config vite.lib.config.js --mode development",
"build:types": "tsc --declaration --emitDeclarationOnly -p tsconfig.dist.json --skipLibCheck && tsc-alias -p tsconfig.json",
"check:format": "prettier --check --ignore-path .gitignore .",
"check:lint": "eslint --ignore-path .gitignore --no-error-on-unmatched-pattern .; if [ $? -eq 0 ]; then echo 8J+OiSBObyBsaW50IGluIHRoaXMgY29kZSEKCg== | base64 -d; else exit 1; fi",
"check:types": "tsc --noEmit -p tsconfig.json; if [ $? -eq 0 ]; then echo 8J+OiSBUeXBlcyBhcmUgZ29vZCEKCg== | base64 -d; else exit 1; fi",
"confgen": "npx confgen@latest @lib @docs --name Codedocs git yarn typescript codespaces react vite vitest dist:lib eslint prettier githubActions codedocs",
"fix": "yarn fix:lint && yarn fix:format",
"fix:format": "prettier --write --ignore-path .gitignore .",
"fix:lint": "eslint --ignore-path .gitignore --no-error-on-unmatched-pattern . --fix; if [ $? -eq 0 ]; then echo 8J+OiSBObyBsaW50IGluIHRoaXMgY29kZSEKCg== | base64 -d; else exit 1; fi",
"start:docs:dev": "vite serve docs --config vite.docs.config.js",
"test": "vitest run --config vite.test.config.js",
"watch": "chokidar . --initial --ignore /^dist/ --ignore /^[.]git/ --ignore /^node_modules/",
"watch:build": "yarn run watch -c 'yarn build'",
"watch:build:yalc": "yarn run watch -c 'yarn build && yalc push'",
"watch:lint": "yarn run watch -c 'yarn eslint --format compact .'",
"watch:test": "vitest watch --config vite.test.config.js",
"watch:types": "tsc --noEmit --watch -p tsconfig.json"
}
}