-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.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
{
"name": "@fleek-platform/agents-chatbox-widget",
"version": "0.9.0",
"description": "A standalone chatbox widget for Fleek agents",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/npm/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/npm/index.d.ts"
}
},
"files": ["dist", "README.md"],
"type": "module",
"scripts": {
"build": "npm run clean:dist && rollup -c",
"build:standalone": "rollup -c --environment BUILD:standalone",
"build:npm": "rollup -c --environment BUILD:npm",
"clean:dist": "rm -rf dist",
"start": "npm run build && npx live-server --open=test/index.html",
"dev": "rollup -c --watch & npx live-server --open=test/index.html",
"format": "biome check --write --formatter-enabled=true --linter-enabled=false --organize-imports-enabled=true .",
"format:check": "biome check --formatter-enabled=true --linter-enabled=false --organize-imports-enabled=true .",
"lint": "biome lint --write .",
"lint:check": "biome lint .",
"fix:style": "biome check --write .",
"check:ci": "biome ci --formatter-enabled=true --linter-enabled=true --organize-imports-enabled=true .",
"prepare": "husky",
"prepare-release-artifacts": "npm run build",
"release": "npm run build && npm pack",
"changeset:add": "npm exec changeset",
"changeset:status": "npm exec changeset status",
"changeset:version": "npm exec changeset version"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.28.1",
"@rollup/plugin-alias": "^4.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.0",
"typescript": "^5.0.0"
},
"dependencies": {
"preact": "^10.26.4",
"uuid": "^11.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["npm run fix:style"]
}
}