-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "human-replay",
"version": "3.0.1",
"description": "Library for recording and replaying human typing patterns",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/browser/index.min.js",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"browser": "./dist/browser/index.min.js"
}
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"build:browser": "npm run build && node build-browser.js",
"build:all": "npm run build && npm run build:browser",
"dev": "tsc --watch",
"docs:dev": "cd docs && npm run dev",
"docs:build": "npm run build:all && cd docs && npm run build",
"docs:install": "cd docs && npm install"
},
"keywords": [
"typing",
"replay",
"animation",
"human",
"text"
],
"author": "Yann Rabiller <contact@einenlum.com> https://einenlum.com",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.25.9",
"typescript": "^5.0.0"
}
}