-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
75 lines (75 loc) · 2.12 KB
/
package.json
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
75
{
"name": "nostalgist",
"description": "Nostalgist.js is a JavaScript library that allows you to run emulators of retro consoles within web browsers.",
"version": "0.11.0",
"author": {
"name": "arianrhodsandlot",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arianrhodsandlot/nostalgist.git"
},
"bugs": {
"url": "https://github.com/arianrhodsandlot/nostalgist/issues"
},
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"retroarch",
"emulator",
"emscripten"
],
"type": "module",
"packageManager": "[email protected]",
"main": "./dist/nostalgist.umd.js",
"module": "./dist/nostalgist.js",
"browser": "./dist/nostalgist.umd.js",
"jsdelivr": "./dist/nostalgist.umd.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/nostalgist.js",
"require": "./dist/nostalgist.umd.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"build": "node --experimental-strip-types scripts/build.ts && tsc",
"dev": "vite demo",
"dev:e2e": "playwright test -c tests/e2e --ui",
"docs:dev": "astro dev --root docs",
"docs:build": "astro build --root docs",
"lint": "eslint src",
"test": "vitest run -c tests/integration/vitest.config && pnpm build && pnpm test:e2e",
"test:e2e": "playwright test -c tests/e2e",
"test:integration": "vitest -c tests/integration/vitest.config"
},
"dependencies": {
"@types/emscripten": "1.39.13",
"@types/ini": "4.1.1",
"@types/path-browserify": "1.0.2"
},
"devDependencies": {
"@arianrhodsandlot/eslint-config": "0.15.11",
"@astrojs/starlight": "0.26.1",
"@playwright/test": "1.46.1",
"@types/is-ci": "3.0.4",
"@types/node": "22.4.1",
"@types/wicg-file-system-access": "2023.10.5",
"astro": "4.14.2",
"eslint": "9.9.0",
"happy-dom": "14.12.3",
"ini": "4.1.3",
"is-ci": "3.0.1",
"path-browserify": "1.0.1",
"prettier": "3.3.3",
"serve": "14.2.3",
"sharp": "0.33.5",
"typescript": "5.5.4",
"vite": "5.4.1",
"vitest": "2.0.5"
}
}