@atscript/core 0.0.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/LICENSE +21 -0
- package/dist/index.cjs +3460 -0
- package/dist/index.d.ts +566 -0
- package/dist/index.mjs +3397 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atscript/core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Core library for Atscript parsing and file generation.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"atscript",
|
|
21
|
+
"annotations",
|
|
22
|
+
"interfaces",
|
|
23
|
+
"runtime",
|
|
24
|
+
"code-generation"
|
|
25
|
+
],
|
|
26
|
+
"author": "Artem Maltsev",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/moostjs/atscript.git",
|
|
30
|
+
"directory": "packages/core"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/moostjs/atscript/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/moostjs/atscript/tree/main/packages/core#readme",
|
|
36
|
+
"license": "ISC",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@prostojs/parser": "^0.5.11",
|
|
39
|
+
"defu": "^6.1.4",
|
|
40
|
+
"glob": "^11.0.0",
|
|
41
|
+
"rolldown": "1.0.0-beta.3"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": "^22.10.5",
|
|
45
|
+
"vitest": "^3.0.0"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"pub": "pnpm publish --access public",
|
|
49
|
+
"test": "vitest"
|
|
50
|
+
}
|
|
51
|
+
}
|