-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "rita",
"version": "3.1.3",
"author": "Daniel C Howe",
"description": "tools for generative natural language",
"homepage": "https://rednoise.org/rita",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"test": "NODE_ENV=dev npx mocha",
"test:dist": "NODE_ENV=dev npx mocha test/dist",
"build": "rm -rf dist/ && npx tsup && cp types/rita.d.* dist/",
"types": "npx tsc",
"pub": "./npnb/source/cli.js --no-release-draft --test-script test:dist patch",
"prepub": "npm version patch && npm run build"
},
"main": "dist/rita.js",
"types": "dist/rita.d.ts",
"browser": "./dist/rita.min.js",
"exports": {
".": {
"import": "./dist/rita.js",
"require": "./dist/rita.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/dhowe/ritajs.git"
},
"engines": {
"node": ">=14.0"
},
"keywords": [
"natural language",
"generative text",
"text analysis"
],
"bugs": {
"url": "https://github.com/dhowe/ritajs/issues"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"chai": "^4.3.10",
"esbuild-plugin-version-injector": "^1.2.1",
"mocha": "^10.2.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"riscript": "^1.0.66"
}
}