-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.72 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
67
{
"name": "@fechin/sbti",
"version": "0.1.1",
"description": "Free SBTI personality test CLI, local sbti test engine, and self-contained installable skill for Silly Big Personality Test results.",
"main": "src/index.js",
"types": "index.d.ts",
"bin": {
"sbti": "bin/sbti.js",
"sbti-test": "bin/sbti.js"
},
"exports": {
".": "./src/index.js",
"./data/question-bank.json": "./data/question-bank.json",
"./package.json": "./package.json"
},
"files": [
"agents",
"bin",
"data",
"skills",
"src",
"index.d.ts",
"LICENSE",
"README.md",
"SKILL.md"
],
"scripts": {
"lint": "node --check src/index.js && node --check src/cli.js && node --check bin/sbti.js && node --check test/core.test.js && node --check test/cli.test.js && node --check test/skill-layout.test.js && node --check test/skill-script.test.js && node --check scripts/verify-release.js",
"test": "node --test",
"verify:release": "node scripts/verify-release.js",
"prepack": "npm run lint && npm test"
},
"keywords": [
"sbti",
"sbti-test",
"sbti-personality",
"sbti-personality-test",
"silly-big-personality-test",
"personality",
"test",
"personality-test",
"internet-personality-test",
"mbti-alternative",
"sbti-vs-mbti",
"sbti结果",
"sbti人格测试",
"人格测试",
"skill",
"cli"
],
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"author": "Fechin <admin@fechin.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/Fechin/sbti.git"
},
"homepage": "https://sbti.now/",
"bugs": {
"url": "https://github.com/Fechin/sbti/issues"
},
"publishConfig": {
"access": "public"
}
}