atchara 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/release/index.cjs +2119 -0
- package/dist/release/index.d.cts +563 -0
- package/dist/release/index.d.ts +563 -0
- package/dist/release/index.js +2060 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "atchara",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "A fast, schema-aware JSON parser with static type inference",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"JSON",
|
|
7
|
+
"Parser",
|
|
8
|
+
"Native",
|
|
9
|
+
"Schema",
|
|
10
|
+
"Atchara"
|
|
11
|
+
],
|
|
12
|
+
"author": "Jan Karlo Dela Cruz",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/release/index.d.ts",
|
|
18
|
+
"import": "./dist/release/index.js",
|
|
19
|
+
"require": "./dist/release/index.cjs"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist/release"
|
|
24
|
+
],
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/jankdc/atchara.git",
|
|
28
|
+
"directory": "packages/atchara"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"clean": "rm -rf dist",
|
|
35
|
+
"build": "npm run build:release && npm run build:profile",
|
|
36
|
+
"build:release": "tsup --config tsup.release.config.ts",
|
|
37
|
+
"build:profile": "tsup --config tsup.profile.config.ts",
|
|
38
|
+
"test": "vitest run",
|
|
39
|
+
"lint": "eslint .",
|
|
40
|
+
"typecheck": "tsc --noEmit"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@atcharajs/core": "0.1.1",
|
|
44
|
+
"@atcharajs/native": "0.1.1"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@eslint/js": "^9.18.0",
|
|
48
|
+
"@types/node": "^20.11.0",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^8.37.0",
|
|
50
|
+
"@typescript-eslint/parser": "^8.37.0",
|
|
51
|
+
"eslint": "^9.31.0",
|
|
52
|
+
"eslint-config-prettier": "^9.1.0",
|
|
53
|
+
"tsup": "^8.0.1",
|
|
54
|
+
"typescript": "^5.8.3",
|
|
55
|
+
"vitest": "^4.0.4"
|
|
56
|
+
},
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
}
|
|
60
|
+
}
|