-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1013 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1013 Bytes
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
{
"name": "@atrament/web",
"version": "2.2.1",
"description": "Atrament, a text game engine - build for web browsers",
"type": "module",
"main": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"prepack": "npm run build",
"lint": "eslint ./src/ --ext .js"
},
"author": "Serhii Mozhaiskyi (sergei.mozhaisky@gmail.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/technix/atrament-web.git"
},
"license": "MIT",
"dependencies": {
"@atrament/core": "2.1.5",
"fflate": "0.8.2",
"howler": "2.2.4",
"idb-keyval": "6.2.2",
"murmurhash-js": "1.0.0",
"nanostores": "1.2.0"
},
"devDependencies": {
"eslint": "8.49.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"path": "0.12.7",
"vite": "8.0.6",
"vite-plugin-bundlesize": "0.3.0"
}
}