-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.45 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
{
"name": "@aperturesyndicate/synx-format",
"version": "3.6.3",
"description": "SYNX: The Active Data Format. Faster than JSON, cheaper for AI tokens, built-in logic.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"synx": "bin/synx.js"
},
"browser": "dist/synx.browser.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"require": "./dist/synx.browser.js",
"import": "./dist/synx.browser.mjs"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE",
"SPECIFICATION.md"
],
"scripts": {
"build": "tsc",
"build:browser": "node build-browser.js",
"build:all": "tsc \u0026\u0026 node build-browser.js",
"test": "npx jest --config jest.config.js",
"lint": "eslint src/",
"prepublishOnly": "npm run build:all"
},
"keywords": [
"synx",
"parser",
"config",
"json-alternative",
"yaml-alternative",
"ai-optimized",
"data-format",
"active-config"
],
"author": "APERTURESyndicate \u003csupport@aperturesyndicate.com\u003e",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/APERTURESyndicate/synx-format"
},
"homepage": "https://github.com/APERTURESyndicate/synx-format",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"esbuild": "^0.27.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.4.0"
}
}