-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.99 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
{
"name": "launched",
"version": "0.2.0-alpha.4",
"type": "module",
"description": "Make website content editable by clients, no codebase access required.",
"keywords": [
"launched",
"cms",
"content management",
"editable",
"react",
"freelance"
],
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && ./scripts/build.sh dist",
"build:demo": "rimraf demo/src/dist && ./scripts/build.sh demo/src/dist tsc",
"build:demo-static": "rimraf demo/public/dist && ./scripts/build.sh demo/public/dist umd",
"watch": "nodemon --exec \"npm run build:demo\"",
"watch:static": "nodemon --exec \"npm run build:demo-static\"",
"test": "vitest run -u --config test/vitest.config.ts",
"test:coverage": "vitest run -u --config test/vitest.config.ts --coverage",
"test:watch": "vitest -u --config test/vitest.config.ts"
},
"author": "Michael Beck <beck.jacob.michael@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/MMMJB/launched.git"
},
"exports": {
".": "./dist/index.js",
"./components": "./dist/components/index.js"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-v8": "^1.6.0",
"jsdom": "^24.1.0",
"nodemon": "^3.1.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"rollup": "^4.19.0",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}