-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.68 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.68 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
{
"name": "clippyjs",
"version": "0.1.0",
"description": "Add Clippy or his friends to any website for instant nostalgia.",
"license": "MIT",
"repository": "pi0/clippyjs",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./agents": "./dist/agents/index.mjs",
"./agents/bonzi": "./dist/agents/bonzi/index.mjs",
"./agents/clippy": "./dist/agents/clippy/index.mjs",
"./agents/f1": "./dist/agents/f1/index.mjs",
"./agents/genie": "./dist/agents/genie/index.mjs",
"./agents/genius": "./dist/agents/genius/index.mjs",
"./agents/links": "./dist/agents/links/index.mjs",
"./agents/merlin": "./dist/agents/merlin/index.mjs",
"./agents/peedy": "./dist/agents/peedy/index.mjs",
"./agents/rocky": "./dist/agents/rocky/index.mjs",
"./agents/rover": "./dist/agents/rover/index.mjs"
},
"scripts": {
"build": "obuild",
"dev": "vite dev",
"fmt": "automd && oxlint . --fix && oxfmt .",
"lint": "oxlint . && oxfmt --check .",
"prepack": "pnpm build",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm typecheck",
"typecheck": "tsgo --noEmit --skipLibCheck"
},
"devDependencies": {
"@mlc-ai/web-llm": "^0.2.80",
"@types/node": "latest",
"@typescript/native-preview": "latest",
"@vitest/coverage-v8": "latest",
"automd": "latest",
"changelogen": "latest",
"obuild": "latest",
"oxfmt": "latest",
"oxlint": "latest",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "latest"
},
"packageManager": "pnpm@10.29.3"
}