-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
88 lines (88 loc) · 2.49 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "nostalgist",
"version": "0.11.0",
"description": "Nostalgist.js is a JavaScript library that allows you to run emulators of retro consoles within web browsers.",
"keywords": [
"retroarch",
"emulator",
"emscripten"
],
"bugs": {
"url": "https://github.com/arianrhodsandlot/nostalgist/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arianrhodsandlot/nostalgist.git"
},
"license": "MIT",
"author": {
"name": "arianrhodsandlot",
"email": "[email protected]"
},
"type": "module",
"exports": {
".": {
"import": "./dist/nostalgist.js",
"require": "./dist/nostalgist.umd.js",
"types": "./dist/types/index.d.ts"
}
},
"main": "./dist/nostalgist.umd.js",
"jsdelivr": "./dist/nostalgist.umd.js",
"module": "./dist/nostalgist.js",
"browser": "./dist/nostalgist.umd.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.ts && tsc",
"dev": "vite demo",
"dev:e2e": "playwright test -c tests/e2e --ui",
"docs:build": "astro build --root docs",
"docs:dev": "astro dev --root docs",
"eslint": "eslint --no-warn-ignored",
"lint": "node --run=eslint -- src",
"prepare": "simple-git-hooks",
"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"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.?(m|c)@(j|t)s?(x)": "node --run=eslint -- --fix",
"package.json": "pnpm dlx sort-package-json"
},
"dependencies": {
"@types/emscripten": "1.39.13",
"@types/ini": "4.1.1",
"@types/path-browserify": "1.0.3"
},
"devDependencies": {
"@arianrhodsandlot/eslint-config": "0.17.1",
"@arianrhodsandlot/release-kit": "0.1.6",
"@astrojs/starlight": "0.31.1",
"@playwright/test": "1.49.1",
"@types/is-ci": "3.0.4",
"@types/node": "22.10.7",
"@types/wicg-file-system-access": "2023.10.5",
"astro": "5.1.7",
"eslint": "9.18.0",
"ini": "5.0.0",
"is-ci": "4.1.0",
"jiti": "2.4.2",
"jsdom": "26.0.0",
"lint-staged": "15.4.1",
"path-browserify": "1.0.1",
"prettier": "3.4.2",
"serve": "14.2.4",
"sharp": "0.33.5",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.3",
"vite": "6.0.7",
"vitest": "3.0.2"
},
"packageManager": "[email protected]"
}