-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "@npi-ai/browser-utils",
"private": false,
"version": "0.0.17",
"description": "Browser utilities for NPi",
"type": "module",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"release": "npm version patch && npm run build && npm publish --access public"
},
"keywords": [
"autonomous agent",
"llm",
"grounding"
],
"author": "npi",
"license": "BSL-1.1",
"dependencies": {
"@medv/finder": "^3.2.0",
"dom-accessibility-api": "^0.6.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"esbuild-plugin-umd-wrapper": "^2.0.0",
"eslint": "^9.0.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}