-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 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
42
43
44
45
46
47
{
"name": "libcaesium-wasm",
"version": "0.5.0",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"format": "prettier --write src/**/*.{js,ts} examples/**/*.{js,ts,html}",
"lint": "eslint src/**/*.{js,ts,tsx} --no-warn-ignored",
"lint:fix": "eslint src/**/*.{js,ts,tsx} --no-warn-ignored --fix",
"build:rust": "cross build --release",
"build:ts": "vite build",
"build": "npm run build:rust && npm run build:ts"
},
"type": "module",
"license": "MIT",
"author": "Matteo Paonessa",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.5",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-static-copy": "^3.1.2"
},
"files": [
"dist",
"README.md"
]
}