@azerothjs/compiler 0.2.0-alpha.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/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/package.json +38 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// ============================================================================
|
|
3
|
+
// AZEROTHJS — Compiler
|
|
4
|
+
// ============================================================================
|
|
5
|
+
//
|
|
6
|
+
// Custom .azeroth file compiler built from scratch:
|
|
7
|
+
// - Parser
|
|
8
|
+
// - Template compiler
|
|
9
|
+
// - Directives
|
|
10
|
+
// - Scoped CSS
|
|
11
|
+
// - Vite plugin
|
|
12
|
+
// - HMR support
|
|
13
|
+
// - Source maps
|
|
14
|
+
//
|
|
15
|
+
// STATUS: Phase 5
|
|
16
|
+
// ============================================================================
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,+EAA+E;AAC/E,uBAAuB;AACvB,+EAA+E;AAC/E,EAAE;AACF,oDAAoD;AACpD,aAAa;AACb,wBAAwB;AACxB,iBAAiB;AACjB,iBAAiB;AACjB,kBAAkB;AAClB,kBAAkB;AAClB,kBAAkB;AAClB,EAAE;AACF,kBAAkB;AAClB,+EAA+E"}
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@azerothjs/compiler",
|
|
3
|
+
"version": "0.2.0-alpha.1",
|
|
4
|
+
"description": "AzerothJS compiler — .azeroth SFC compiler (coming soon)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc -p tsconfig.build.json",
|
|
22
|
+
"prepublishOnly": "npm run build"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"author": "IntelligentQuantum",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/IntelligentQuantum-Dev/AzerothJS.git",
|
|
32
|
+
"directory": "packages/compiler"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/IntelligentQuantum-Dev/AzerothJS/tree/main/packages/compiler",
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/IntelligentQuantum-Dev/AzerothJS/issues"
|
|
37
|
+
}
|
|
38
|
+
}
|