-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "daemon-os",
"version": "0.5.0",
"description": "A simulated operating system that runs on the web for the Daemon platform. [Live link](https://os.daemon.computer)",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"check": "bun run format:check && npm run lint"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.15.18",
"solid-devtools": "^0.33.0",
"vite": "^5.4.19",
"vite-plugin-solid": "^2.11.6"
},
"dependencies": {
"@eslint/js": "^9.29.0",
"@mysten/sui": "^1.29.1",
"@mysten/wallet-standard": "^0.14.9",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-solid": "^0.14.5",
"interactjs": "^1.10.27",
"postcss": "^8.5.3",
"prettier": "^3.6.1",
"solid-js": "^1.9.7",
"typescript": "^5.8.3",
"tailwindcss": "^3.4.17"
}
}