-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.02 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "teclado.js",
"version": "0.0.6",
"description": "Simple virtual keyboard inspired by mobile keyboards.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"browser": "./teclado.min.js",
"files": [
"lib/",
"teclado.min.js"
],
"scripts": {
"clean": "rm -rf node_modules && rm -rf .pnpm-store && rm -rf lib",
"tsc:dev": "tsc -p tsconfig.json --watch --outDir example/js",
"tsc:dist": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"browsersync": "browser-sync start --server 'example' --files 'example' --port 2500",
"dev": "pnpm run tsc:dev & pnpm run browsersync",
"minify": "esbuild lib/esm/index.js --bundle --minify --platform=neutral --outfile=teclado.min.js",
"test": "jest",
"docs": "docsify serve ./docs",
"size": "size-limit",
"gzip-size": "gzip-size teclado.min.js",
"build": "pnpm run tsc:dist && pnpm run minify && pnpm run size",
"release": "npx changelogen --output --bump",
"prepublishOnly": "pnpm run build && pnpm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduhds/teclado.js.git"
},
"keywords": [
"keyboard",
"teclado",
"virtual"
],
"author": "Eduardo H. da Silva <27dhiouz9@mozmail.com> (https://github.com/eduhds)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eduhds/teclado.js/issues"
},
"homepage": "https://eduhds.github.io/teclado.js",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@size-limit/file": "^11.1.2",
"@types/jest": "^29.5.11",
"babel-jest": "^29.7.0",
"browser-sync": "^3.0.2",
"changelogen": "^0.5.5",
"docsify-cli": "^4.4.4",
"esbuild": "^0.20.2",
"gzip-size-cli": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"size-limit": "^11.1.2",
"typedoc": "^0.25.6",
"typescript": "^5.3.3"
},
"size-limit": [
{
"limit": "10 kB",
"path": "teclado.min.js"
}
]
}