achievements-engine 1.0.0 → 1.1.0
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.cjs +271 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +143 -3
- package/dist/index.esm.js +270 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +271 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "achievements-engine",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Framework-agnostic achievement system with event-based architecture. Core engine for gamification features.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "rollup -c",
|
|
17
17
|
"test": "jest",
|
|
18
|
-
"type-check": "tsc --noEmit"
|
|
18
|
+
"type-check": "tsc --noEmit",
|
|
19
|
+
"docs:dev": "cd docs && npm run start",
|
|
20
|
+
"docs:build": "cd docs && npm run build",
|
|
21
|
+
"docs:serve": "cd docs && npm run serve"
|
|
19
22
|
},
|
|
20
23
|
"keywords": [
|
|
21
24
|
"achievements",
|