-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.87 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
{
"name": "isai",
"version": "1.0.0",
"description": "🤖/👨🦰 Recognize AI bots/crawlers/spiders using the user agent string.",
"keywords": [
"ai",
"gpt",
"llm",
"openai",
"bot",
"crawlers",
"spiders",
"useragent",
"user agent parsing",
"🤖"
],
"license": "Unlicense",
"homepage": "https://isai.js.org",
"repository": {
"type": "git",
"url": "https://github.com/eob/isai"
},
"engines": {
"node": ">=18"
},
"files": [
"./index*"
],
"type": "commonjs",
"main": "./index.js",
"module": "./index.mjs",
"browser": "./index.mjs",
"jsdelivr": "./index.iife.js",
"exports": {
"./package.json": "./package.json",
".": {
"browser": {
"import": "./index.mjs",
"require": "./index.js"
},
"node": {
"import": "./index.mjs",
"require": "./index.js"
},
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
}
},
"sideEffects": false,
"types": "index.d.ts",
"scripts": {
"prepare": "./scripts/prepare/index.js",
"build": "./scripts/build/procedure.sh",
"format": "./scripts/format/procedure.sh",
"pretest": "npm run build && npm run prepare",
"test": "./scripts/test/procedure.sh",
"prepublishOnly": "./scripts/prepublish/procedure.sh",
"prestart": "which parcel || npm i parcel-bundler --no-save",
"start": "parcel page/index.pug --out-dir docs",
"prepage": "which parcel || npm i parcel-bundler --no-save",
"page": "parcel build page/index.pug --out-dir docs --public-url ./"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"esbuild": "~0.24.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pug": "^3.0.2",
"stdline": "^1.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"user-agents": "^1.1.116",
"yaml": "^2.3.4"
}
}