-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.42 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
{
"name": "ttty",
"author": "Mikhail Korolev <[email protected]> (https://mkrl.xyz)",
"version": "0.5.6",
"description": "A dead simple lightweight TypeScript terminal \"emulator\" that mimics terminal behaviour in the browser.",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"unpkg": "./dist/ttty.iife.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mkrl/ttty.git"
},
"sideEffects": false,
"scripts": {
"start": "vite",
"build": "npm run build:css && tsc && vite build --config lib.config.js && npm run emit && rm dist/favicon.ico",
"build:site": "npm run build:css && tsc && vite build --config site.config.js",
"emit": "tsc --declaration --module esnext --moduleResolution node --target esnext --outDir dist src/index.ts",
"build:css": "node scripts/buildCss.js",
"typecheck": "tsc --noEmit --incremental false",
"lint": "eslint \"{src,preview}/**/*.{ts,tsx}\""
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"semantic-release": "^24.0.0",
"typescript": "^4.3.2",
"vite": "^2.5.4"
}
}